home *** CD-ROM | disk | FTP | other *** search
/ SGI Freeware 1999 August / SGI Freeware 1999 August.iso / dist / fw_xemacs.idb / usr / freeware / lib / xemacs-20.4 / info / w3.info-2.z / w3.info-2
Encoding:
GNU Info File  |  1998-05-21  |  48.9 KB  |  1,376 lines

  1. This is Info file ../info/w3.info, produced by Makeinfo version 1.68
  2. from the input file w3.texi.
  3.  
  4. INFO-DIR-SECTION World Wide Web
  5. INFO-DIR-SECTION GNU Emacs Lisp
  6. START-INFO-DIR-ENTRY
  7. * Emacs/W3: (w3).                 Emacs/W3 World Wide Web browser.
  8. END-INFO-DIR-ENTRY
  9.    This file documents the Emacs/W3 World Wide Web browser.
  10.  
  11.    Copyright (C) 1993, 1994, 1995, 1996 William M. Perry Copyright (C)
  12. 1996, 1997 Free Software Foundation
  13.  
  14.    Permission is granted to make and distribute verbatim copies of this
  15. manual provided the copyright notice and this permission notice are
  16. preserved on all copies.
  17.  
  18. 
  19. File: w3.info,  Node: font-variant,  Next: font-weight,  Prev: font-style,  Up: Font Properties
  20.  
  21. font-variant
  22. ............
  23.  
  24. Value:         normal | small-caps                                        
  25. Initial:       normal                                                     
  26. Applies to:    all elements                                               
  27. Inherited:     yes                                                        
  28. Percentage     N/A                                                        
  29. values:                                                                   
  30.  
  31.    Another type of variation within a font family is the small-caps. In
  32. a small-caps font the lower case letters look similar to the uppercase
  33. ones, but in a smaller size and with slightly different proportions. The
  34. 'font-variant' property selects that font.
  35.  
  36.    A value of 'normal' selects a font that is not a small-caps font,
  37. 'small-caps' selects a small-caps font. It is acceptable (but not
  38. required) in CSS1 if the small-caps font is a created by taking a normal
  39. font and replacing the lower case letters by scaled uppercase
  40. characters. As a last resort, uppercase letters will be used as
  41. replacement for a small-caps font.
  42.  
  43.    The following example results in an 'H3' element in small-caps, with
  44. emphasized words in oblique small-caps:
  45.  
  46.        H3 { font-variant: small-caps }
  47.        EM { font-style: oblique }
  48.  
  49.    There may be other variants in the font family as well, such as fonts
  50. with old-style numerals, small-caps numerals, condensed or expanded
  51. letters, etc. CSS1 has no properties that select those.
  52.  
  53. 
  54. File: w3.info,  Node: font-weight,  Next: font-size,  Prev: font-variant,  Up: Font Properties
  55.  
  56. font-weight
  57. ...........
  58.  
  59. Supported      normal | bold | 100 | 200 | 300 | 400 | 500 | 600 | 700 |  
  60. Values:        800 | 900                                                  
  61. Unsupported    bolder | lighter                                           
  62. Values:                                                                   
  63. Initial:       normal                                                     
  64. Applies to:    all elements                                               
  65. Inherited:     yes                                                        
  66. Percentage     N/A                                                        
  67. values:                                                                   
  68.  
  69.    The 'font-weight' property selects the weight of the font. The values
  70. '100' to '900' form an ordered sequence, where each number indicates a
  71. weight that is at least as dark as its predecessor. The keyword 'normal'
  72. is synonymous with '400', and 'bold' is synonymous with '700'. Keywords
  73. other than 'normal' and 'bold' have been shown to be often confused with
  74. font names and a numerical scale was therefore chosen for the 9-value
  75. list.
  76.  
  77.        P { font-weight: normal }   /* 400 */
  78.        H1 { font-weight: 700 }     /* bold */
  79.  
  80.    The 'bolder' and 'lighter' values select font weights that are
  81. relative to the weight inherited from the parent:
  82.  
  83.        STRONG { font-weight: bolder }
  84.  
  85.    There is no guarantee that there will be a darker face for each of
  86. the 'font-weight' values; for example, some fonts may have only a
  87. normal and a bold face, others may have eight different face weights.
  88. There is no guarantee on how a UA will map font faces within a family
  89. to weight values. The only guarantee is that a face of a given value
  90. will be no less dark than the faces of lighter values.
  91.  
  92. 
  93. File: w3.info,  Node: font-size,  Next: font,  Prev: font-weight,  Up: Font Properties
  94.  
  95. font-size
  96. .........
  97.  
  98. Supported      <absolute-size> | <length>                                 
  99. Values:                                                                   
  100. Unsupported    <percentage> | <relative-size>                             
  101. Values:                                                                   
  102. Initial:       medium                                                     
  103. Applies to:    all elements                                               
  104. Inherited:     yes                                                        
  105. Percentage     relative to parent element's font size                     
  106. values:                                                                   
  107.  
  108. <absolute-size>
  109.      An <absolute-size> keyword is an index to a table of font sizes
  110.      computed and kept by the UA. Possible values are:
  111.         * xx-small
  112.  
  113.         * x-small
  114.  
  115.         * small
  116.  
  117.         * medium
  118.  
  119.         * large
  120.  
  121.         * x-large
  122.  
  123.         * xx-large
  124.  
  125.      On a computer screen a scaling factor of 1.5 is suggested between
  126.      adjacent indexes; if the 'medium' font is 10pt, the 'large' font
  127.      could be 15pt. Different media may need different scaling factors.
  128.      Also, the UA should take the quality and availability of fonts
  129.      into account when computing the table. The table may be different
  130.      from one font family to another.
  131.  
  132. <relative-size>
  133.      A <relative-size> keyword is interpreted relative to the table of
  134.      font sizes and the font size of the parent element. Possible
  135.      values are larger or smaller. For example, if the parent element
  136.      has a font size of 'medium', a value of 'larger' will make the
  137.      font size of the current element be 'large'. If the parent
  138.      element's size is not close to a table entry, the UA is free to
  139.      interpolate between table entries or round off to the closest one.
  140.      The UA may have to extrapolate table values if the numerical value
  141.      goes beyond the keywords.
  142.  
  143.    Length and percentage values should not take the font size table into
  144. account when calculating the font size of the element.
  145.  
  146.    Negative values are not allowed.
  147.  
  148.    On all other properties, 'em' and 'ex' length values refer to the
  149. font size of the current element. On the 'font-size' property, these
  150. length units refer to the font size of the parent element.
  151.  
  152.    Note that an application may reinterpret an explicit size, depending
  153. on the context. E.g., inside a VR scene a font may get a different size
  154. because of perspective distortion.
  155.  
  156.    Examples:
  157.  
  158.        P { font-size: 12pt; }
  159.        BLOCKQUOTE { font-size: larger }
  160.        EM { font-size: 150% }
  161.        EM { font-size: 1.5em }
  162.  
  163.    If the suggested scaling factor of 1.5 is used, the last three
  164. declarations are identical.
  165.  
  166. 
  167. File: w3.info,  Node: font,  Prev: font-size,  Up: Font Properties
  168.  
  169. font
  170. ....
  171.  
  172. Value:         [ <font-style> || <font-variant> || <font-weight> ]?       
  173.                <font-size> [ / <line-height> ]? <font-family>             
  174. Initial:       not defined for shorthand properties                       
  175. Applies to:    all elements                                               
  176. Inherited:     yes                                                        
  177. Percentage     allowed on <font-size> and <line-height>                   
  178. values:                                                                   
  179.  
  180.    The 'font' property is a shorthand property for setting 'font-style'
  181. 'font-variant' 'font-weight' 'font-size', 'line-height' and
  182. 'font-family' at the same place in the style sheet. The syntax of this
  183. property is based on a traditional typographical shorthand notation to
  184. set multiple properties related to fonts.
  185.  
  186.    For a definition of allowed and initial values, see the previously
  187. defined properties. Properties for which no values are given are set to
  188. their initial value.
  189.  
  190.        P { font: 12pt/14pt sans-serif }
  191.        P { font: 80% sans-serif }
  192.        P { font: x-large/110% "new century schoolbook", serif }
  193.        P { font: bold italic large Palatino, serif }
  194.        P { font: normal small-caps 120%/120% fantasy }
  195.  
  196.    In the second rule, the font size percentage value ('80%') refers to
  197. the font size of the parent element. In the third rule, the line height
  198. percentage refers to the font size of the element itself.
  199.  
  200.    In the first three rules above, the 'font-style', 'font-variant' and
  201. 'font-weight' are not explicitly mentioned, which means they are all
  202. three set to their initial value ('normal'). The fourth rule sets the
  203. 'font-weight' to 'bold', the 'font-style' to 'italic' and implicitly
  204. sets 'font-variant' to 'normal'.
  205.  
  206.    The fifth rule sets the 'font-variant' ('small-caps'), the
  207. 'font-size' (120% of the parent's font), the 'line-height' (120% times
  208. the font size) and the 'font-family' ('fantasy'). It follows that the
  209. keyword 'normal' applies to the two remaining properties: 'font-style'
  210. and 'font-weight'.
  211.  
  212. 
  213. File: w3.info,  Node: Colors and Backgrounds,  Next: Text Properties,  Prev: Font Properties,  Up: Properties
  214.  
  215. Colors and Backgrounds
  216. ----------------------
  217.  
  218.    These properties describe the color (often called foreground color)
  219. and background of an element (i.e. the surface onto which the content is
  220. rendered). One can set a background color and/or a background image. The
  221. position of the image, if/how it is repeated, and whether it is fixed or
  222. scrolled relative to the canvas can also be set.
  223.  
  224.    The 'color' property inherits normally. The background properties do
  225. not inherit, but the parent element's background will shine through by
  226. default because of the initial 'transparent' value on
  227. 'background-color'.
  228.  
  229.    NOTE: Currently, Emacs/W3 can only show background images under
  230. XEmacs.  Emacs 19 doesn't have the support in its display code yet.
  231.  
  232. * Menu:
  233.  
  234. * color::                       Foreground colors.
  235. * background-color::            Background colors.
  236. * background-image::            Background images.
  237. * background-repeat::           Controlling repeating of background images.
  238. * background-attachment::       Where background images are drawn.
  239. * background-position::         Where background images are drawn.
  240. * background::                  Shorthand for all background properties.
  241.  
  242. 
  243. File: w3.info,  Node: color,  Next: background-color,  Prev: Colors and Backgrounds,  Up: Colors and Backgrounds
  244.  
  245. color
  246. .....
  247.  
  248. Value:         <color>                                                    
  249. Initial:       User specific                                              
  250. Applies to:    all elements                                               
  251. Inherited:     yes                                                        
  252. Percentage     N/A                                                        
  253. values:                                                                   
  254.  
  255.    This property describes the text color of  an element (often
  256. referred to as the foreground color). There are different ways to
  257. specify red:
  258.  
  259.        EM { color: red }              /* natural language */
  260.        EM { color: rgb(255,0,0) }     /* RGB range 0-255   */
  261.  
  262.    See *Note Color Units:: for a description of possible color values.
  263.  
  264. 
  265. File: w3.info,  Node: background-color,  Next: background-image,  Prev: color,  Up: Colors and Backgrounds
  266.  
  267. background-color
  268. ................
  269.  
  270. Value:         <color> | transparent                                      
  271. Initial:       transparent                                                
  272. Applies to:    all elements                                               
  273. Inherited:     no                                                         
  274. Percentage     N/A                                                        
  275. values:                                                                   
  276.  
  277.    This property sets the background color of an element.
  278.  
  279.        H1 { background-color: #F00 }
  280.  
  281. 
  282. File: w3.info,  Node: background-image,  Next: background-repeat,  Prev: background-color,  Up: Colors and Backgrounds
  283.  
  284. background-image
  285. ................
  286.  
  287. Value:         <url> | none                                               
  288. Initial:       none                                                       
  289. Applies to:    all elements                                               
  290. Inherited:     no                                                         
  291. Percentage     N/A                                                        
  292. values:                                                                   
  293.  
  294.    This property sets the background image of an element. When setting a
  295. background image, one should also set a background color that will be
  296. used when the image is unavailable. When the image is available, it is
  297. overlaid on top of the background color.
  298.  
  299.        BODY { background-image: url(marble.png) }
  300.        P { background-image: none }
  301.  
  302. 
  303. File: w3.info,  Node: background-repeat,  Next: background-attachment,  Prev: background-image,  Up: Colors and Backgrounds
  304.  
  305. background-repeat
  306. .................
  307.  
  308.    This property is not supported at all under Emacs/W3.
  309.  
  310. 
  311. File: w3.info,  Node: background-attachment,  Next: background-position,  Prev: background-repeat,  Up: Colors and Backgrounds
  312.  
  313. background-attachment
  314. .....................
  315.  
  316.    This property is not supported at all under Emacs/W3.
  317.  
  318. 
  319. File: w3.info,  Node: background-position,  Next: background,  Prev: background-attachment,  Up: Colors and Backgrounds
  320.  
  321. background-position
  322. ...................
  323.  
  324.    This property is not supported at all under Emacs/W3.
  325.  
  326. 
  327. File: w3.info,  Node: background,  Prev: background-position,  Up: Colors and Backgrounds
  328.  
  329. background
  330. ..........
  331.  
  332. Value:         <background-color> || <background-image> ||                
  333.                <background-repeat> || <background-attachment> ||          
  334.                <background-position>                                      
  335. Initial:       not defined for shorthand properties                       
  336. Applies to:    all elements                                               
  337. Inherited:     no                                                         
  338. Percentage     allowed on <background-position>                           
  339. values:                                                                   
  340.  
  341.    The 'background' property is a shorthand property for setting the
  342. individual background properties (i.e., 'background-color',
  343. 'background-image', 'background-repeat', 'background-attachment' and
  344. 'background-position') at the same place in the style sheet.
  345.  
  346.    Possible values on the 'background' properties are the set of all
  347. possible values on the individual properties.
  348.  
  349.        BODY { background: red }
  350.        P { background: url(chess.png) gray 50% repeat fixed }
  351.  
  352.    The 'background' property always sets all the individual background
  353. properties. In the first rule of the above example, only a value for
  354. 'background-color' has been given and the other individual properties
  355. are set to their initial value. In the second rule, all individual
  356. properties have been specified.
  357.  
  358. 
  359. File: w3.info,  Node: Text Properties,  Next: Box Properties,  Prev: Colors and Backgrounds,  Up: Properties
  360.  
  361. Text Properties
  362. ---------------
  363.  
  364. * Menu:
  365.  
  366. * word-spacing::
  367. * letter-spacing::
  368. * text-decoration::
  369. * vertical-align::
  370. * text-transform::
  371. * text-align::
  372. * text-indent::
  373. * line-height::
  374.  
  375. 
  376. File: w3.info,  Node: word-spacing,  Next: letter-spacing,  Prev: Text Properties,  Up: Text Properties
  377.  
  378. word-spacing
  379. ............
  380.  
  381. Supported      normal                                                     
  382. Values:                                                                   
  383. Unsupported    <length>                                                   
  384. Values:                                                                   
  385. Initial:       normal                                                     
  386. Applies to:    all elements                                               
  387. Inherited:     yes                                                        
  388. Percentage     N/A                                                        
  389. values:                                                                   
  390.  
  391.    The length unit indicates an addition to the default space between
  392. words. Values can be negative, but there may be implementation-specific
  393. limits. The UA is free to select the exact spacing algorithm. The word
  394. spacing may also be influenced by justification (which is a value of the
  395. 'align' property).
  396.  
  397.        H1 { word-spacing: 0.4em }
  398.  
  399.    Here, the word-spacing between each word in 'H1' elements would be
  400. increased by '1em'.
  401.  
  402.    NOTE: Emacs/W3 cannot currently support this, due to limitations in
  403. Emacs.  It may  be implemented in the future.
  404.  
  405. 
  406. File: w3.info,  Node: letter-spacing,  Next: text-decoration,  Prev: word-spacing,  Up: Text Properties
  407.  
  408. letter-spacing
  409. ..............
  410.  
  411. Supported      normal                                                     
  412. Values:                                                                   
  413. Unsupported    <length>                                                   
  414. Values:                                                                   
  415. Initial:       normal                                                     
  416. Applies to:    all elements                                               
  417. Inherited:     yes                                                        
  418. Percentage     N/A                                                        
  419. values:                                                                   
  420.  
  421.    The length unit indicates an addition to the default space between
  422. characters. Values can be negative, but there may be
  423. implementation-specific limits. The UA is free to select the exact
  424. spacing algorithm. The letter spacing may also be influenced by
  425. justification (which is a value of the 'align' property).
  426.  
  427.        BLOCKQUOTE { letter-spacing: 0.1em }
  428.  
  429.    Here, the letter-spacing between each character in 'BLOCKQUOTE'
  430. elements would be increased by '0.1em'.
  431.  
  432.    NOTE: Emacs/W3 cannot currently support this, due to limitations in
  433. Emacs.  It may be implemented in the future.
  434.  
  435. 
  436. File: w3.info,  Node: text-decoration,  Next: vertical-align,  Prev: letter-spacing,  Up: Text Properties
  437.  
  438. text-decoration
  439. ...............
  440.  
  441. Supported      none | underline | line-through | blink                    
  442. Values:                                                                   
  443. Unsupported    overline                                                   
  444. Values:                                                                   
  445. Initial:       none                                                       
  446. Applies to:    all elements                                               
  447. Inherited:     no, but see clarification below                            
  448. Percentage     N/A                                                        
  449. values:                                                                   
  450.  
  451.    This property describes decorations that are added to the text of an
  452. element. If the element has no text (e.g. the 'IMG' element in HTML) or
  453. is an empty element (e.g. '<EM></EM>'), this property has no effect. A
  454. value of 'blink' causes the text to blink.
  455.  
  456.    The color(s) required for the text decoration should be derived from
  457. the 'color' property value.
  458.  
  459.    This property is not inherited, but elements should match their
  460. parent. E.g., if an element is underlined, the line should span the
  461. child elements. The color of the underlining will remain the same even
  462. if descendant elements have different 'color' values.
  463.  
  464.        A:link, A:visited, A:active { text-decoration: underline }
  465.  
  466.    The example above would underline the text of all links (i.e., all
  467. 'A' elements with a 'HREF' attribute).
  468.  
  469.    NOTE: The 'line-through' property is only supported under XEmacs
  470. currently.  A patch has been sent to the Emacs maintainers to add
  471. support for this, but it has not made it into the main distribution yet.
  472.  
  473. 
  474. File: w3.info,  Node: vertical-align,  Next: text-transform,  Prev: text-decoration,  Up: Text Properties
  475.  
  476. vertical-align
  477. ..............
  478.  
  479.    This is currently unsupported in Emacs/W3.
  480.  
  481. 
  482. File: w3.info,  Node: text-transform,  Next: text-align,  Prev: vertical-align,  Up: Text Properties
  483.  
  484. text-transform
  485. ..............
  486.  
  487. Supported      none                                                       
  488. Values:                                                                   
  489. Unsupported    capitalize | uppercase | lowercase                         
  490. Values:                                                                   
  491. Initial:       none                                                       
  492. Applies to:    all elements                                               
  493. Inherited:     yes                                                        
  494. Percentage     N/A                                                        
  495. values:                                                                   
  496.  
  497. 'capitalize'
  498.      Uppercases the first character of each word.
  499.  
  500. 'uppercase'
  501.      Uppercases all letters of the element.
  502.  
  503. 'lowercase'
  504.      Lowercases all letters of the element.
  505.  
  506. 'none'
  507.      Neutralizes inherited value.
  508.  
  509.    The actual transformation in each case is human language dependent.
  510.  
  511.        H1 { text-transform: uppercase }
  512.  
  513.    The example above would put 'H1' elements in uppercase text.
  514.  
  515.    NOTE: This capability was in the previous version of Emacs/W3, but
  516. has not been reimplemented in the new display code yet.  Please feel
  517. free to send me patches.
  518.  
  519. 
  520. File: w3.info,  Node: text-align,  Next: text-indent,  Prev: text-transform,  Up: Text Properties
  521.  
  522. text-align
  523. ..........
  524.  
  525. Value:         left | right | center | justify                            
  526. Initial:       User specific                                              
  527. Applies to:    block-level elements                                       
  528. Inherited:     yes                                                        
  529. Percentage     N/A                                                        
  530. values:                                                                   
  531.  
  532.    This property describes how text is aligned within the element. The
  533. actual justification algorithm used is UA and human language dependent.
  534.  
  535.    Example:
  536.        DIV.center { text-align: center }
  537.  
  538.    Since 'text-align' inherits, all block-level elements inside the
  539. 'DIV' element with 'CLASS=center' will be centered. Note that
  540. alignments are relative to the width of the element, not the canvas.
  541.  
  542. 
  543. File: w3.info,  Node: text-indent,  Next: line-height,  Prev: text-align,  Up: Text Properties
  544.  
  545. text-indent
  546. ...........
  547.  
  548.    Not currently implemented in Emacs/W3.
  549.  
  550. 
  551. File: w3.info,  Node: line-height,  Prev: text-indent,  Up: Text Properties
  552.  
  553. line-height
  554. ...........
  555.  
  556.    Not currently implemented in Emacs/W3.
  557.  
  558. 
  559. File: w3.info,  Node: Box Properties,  Next: Classification,  Prev: Text Properties,  Up: Properties
  560.  
  561. Box Properties
  562. --------------
  563.  
  564.  
  565. 
  566. File: w3.info,  Node: Classification,  Next: Media Selection,  Prev: Box Properties,  Up: Properties
  567.  
  568. Classification
  569. --------------
  570.  
  571.    These properties classify elements into categories more than they set
  572. specific visual parameters.
  573.  
  574.    The list-style properties describe how list items (i.e. elements
  575. with a 'display' value of 'list-item') are formatted. The list-style
  576. properties can be set on any element, and it will inherit normally down
  577. the tree. However, they will only be have effect on elements with a
  578. 'display' value of 'list-item'. In HTML this is typically the case for
  579. the 'LI' element.
  580.  
  581. * Menu:
  582.  
  583. * display::
  584. * white-space::
  585. * list-style-type::
  586. * list-style-image::
  587. * list-style-position::
  588. * list-style::
  589.  
  590. 
  591. File: w3.info,  Node: display,  Next: white-space,  Prev: Classification,  Up: Classification
  592.  
  593. display
  594. .......
  595.  
  596. Value:         block | inline | list-item | none                          
  597. Extensions:    line                                                       
  598. Initial:       inline                                                     
  599. Applies to:    all elements                                               
  600. Inherited:     no                                                         
  601. Percentage     N/A                                                        
  602. values:                                                                   
  603.  
  604.    This property describes how/if an element is displayed on the canvas
  605. (which may be on a printed page, a computer display etc.).
  606.  
  607.    An element with a 'display' value of 'block' opens whitespace
  608. suitable for a paragraph break.  Typically, elements like 'H1' and 'P'
  609. are of type 'block'. A value of 'list-item' is similar to 'block'
  610. except that a list-item marker is added. In HTML, 'LI' will typically
  611. have this value.
  612.  
  613.    An element with a 'display' value of 'inline' results in a new inline
  614. box on the same line as the previous content.
  615.  
  616.    A value of 'none' turns off the display of the element, including
  617. children elements and the surrounding box.
  618.  
  619.        P { display: block }
  620.        EM { display: inline }
  621.        LI { display: list-item }
  622.        IMG { display: none }
  623.  
  624.    The last rule turns off the display of images.
  625.  
  626.    A value of 'line' results in a single line break.  Emacs/W3 needs
  627. this extension to be able to fully specify the behaviour of BR and HR
  628. elements within a stylesheet.
  629.  
  630.    NOTE: Emacs/W3 defaults to using 'inline' for this property, which
  631. is a slight deviation from the specification.
  632.  
  633. 
  634. File: w3.info,  Node: white-space,  Next: list-style-type,  Prev: display,  Up: Classification
  635.  
  636. white-space
  637. ...........
  638.  
  639. Value:         normal | pre | nowrap                                      
  640. Initial:       normal                                                     
  641. Applies to:    block-level elements                                       
  642. Inherited:     yes                                                        
  643. Percentage     N/A                                                        
  644. values:                                                                   
  645.  
  646.    This property declares how whitespace inside the element is handled:
  647. the 'normal' way (where whitespace is collapsed), as 'pre' (which
  648. behaves like the 'PRE' element in HTML) or as 'nowrap' (where wrapping
  649. is done only through BR elements):
  650.  
  651.        PRE { white-space: pre }
  652.        P   { white-space: normal }
  653.  
  654. 
  655. File: w3.info,  Node: list-style-type,  Next: list-style-image,  Prev: white-space,  Up: Classification
  656.  
  657. list-style-type
  658. ...............
  659.  
  660. Value:         disc | circle | square | decimal | lower-roman |           
  661.                upper-roman | lower-alpha | upper-alpha | none             
  662. Initial:       disc                                                       
  663. Applies to:    elements with 'display' value 'list-item'                  
  664. Inherited:     yes                                                        
  665. Percentage     N/A                                                        
  666. values:                                                                   
  667.  
  668.    This property is used to determine the appearance of the list-item
  669. marker if 'list-style-image' is 'none' or if the image pointed to by the
  670. URL cannot be displayed.
  671.  
  672.    Fo example:
  673.        OL { list-style-type: decimal }       /* 1 2 3 4 5 etc. */
  674.        OL { list-style-type: lower-alpha }   /* a b c d e etc. */
  675.        OL { list-style-type: lower-roman }   /* i ii iii iv v etc. */
  676.  
  677. 
  678. File: w3.info,  Node: list-style-image,  Next: list-style-position,  Prev: list-style-type,  Up: Classification
  679.  
  680. list-style-image
  681. ................
  682.  
  683. Value:         <url> | none                                               
  684. Initial:       none                                                       
  685. Applies to:    elements with 'display' value 'list-item'                  
  686. Inherited:     yes                                                        
  687. Percentage     N/A                                                        
  688. values:                                                                   
  689.  
  690.    This property sets the image that will be used as the list-item
  691. marker. When the image is available it will replace the marker set with
  692. the 'list-style-type' marker.
  693.  
  694.    NOTE: This is currently unimplemented in Emacs/W3.
  695.  
  696.        UL { list-style-image: url(http://png.com/ellipse.png) }
  697.  
  698. 
  699. File: w3.info,  Node: list-style-position,  Next: list-style,  Prev: list-style-image,  Up: Classification
  700.  
  701. list-style-position
  702. ...................
  703.  
  704. Supported      outside                                                    
  705. Values:                                                                   
  706. Unsupported    inside                                                     
  707. Values:                                                                   
  708. Initial:       outside                                                    
  709. Applies to:    elements with 'display' value 'list-item'                  
  710. Inherited:     yes                                                        
  711. Percentage     N/A                                                        
  712. values:                                                                   
  713.  
  714.    The value of 'list-style-position' determines how the list-item
  715. marker is drawn with regard to the content. For a formatting example see
  716. section 4.1.3.
  717.  
  718. 
  719. File: w3.info,  Node: list-style,  Prev: list-style-position,  Up: Classification
  720.  
  721. list-style
  722. ..........
  723.  
  724. Value:         <keyword> || <position> || <url>                           
  725. Initial:       not defined for shorthand properties                       
  726. Applies to:    elements with 'display' value 'list-item'                  
  727. Inherited:     yes                                                        
  728. Percentage     N/A                                                        
  729. values:                                                                   
  730.  
  731.    The 'list-style' property is a shorthand notation for setting the
  732. three properties 'list-style-type', 'list-style-image' and
  733. 'list-style-position' at the same place in the style sheet.
  734.  
  735.        UL { list-style: upper-roman inside }
  736.        UL UL { list-style: circle outside }
  737.        LI.square { list-style: square }
  738.  
  739.    Setting 'list-style' directly on 'LI' elements can have unexpected
  740. results. Consider:
  741.  
  742.        <STYLE TYPE="text/css">
  743.          OL.alpha LI  { list-style: lower-alpha }
  744.          UL LI        { list-style: disc }
  745.        </STYLE>
  746.        <BODY>
  747.          <OL CLASS=alpha>
  748.            <LI>level 1
  749.            <UL>
  750.               <LI>level 2
  751.            </UL>
  752.          </OL>
  753.        </BODY>
  754.  
  755.    Since the specificity (as defined in the cascading order) is higher
  756. for the first rule in the style sheet in the example above, it will
  757. override the second rule on all 'LI' elements and only 'lower-alpha'
  758. list styles will be used. It is therefore recommended to set
  759. 'list-style' only on the list type elements:
  760.  
  761.        OL.alpha  { list-style: lower-alpha }
  762.        UL        { list-style: disc }
  763.  
  764.    In the above example, inheritance will transfer the 'list-style'
  765. values from 'OL' and 'UL' elements to 'LI' elements.
  766.  
  767.    A URL value can be combined with any other value:
  768.  
  769.        UL { list-style: url(http://png.com/ellipse.png) disc }
  770.  
  771.    In the example above, the 'disc' will be used when the image is
  772. unavailable.
  773.  
  774. 
  775. File: w3.info,  Node: Media Selection,  Next: Speech Properties,  Prev: Classification,  Up: Properties
  776.  
  777. Media Selection
  778. ---------------
  779.  
  780.    To specify that a stylesheet declaration should only apply when
  781. using a certain media type (ie: different font families preferred when
  782. printing versus on-screen presentation), the declarations should be
  783. wrapped in the proposed @media directive.
  784.  
  785.    The @media directive takes two arguments, the media type, and a block
  786. of style declarations.
  787.  
  788.        @media print {
  789.          BODY { font-size: 10pt }
  790.          H1 { font-size: 14pt }
  791.        }
  792.    The '@media' construct also allows to put include style sheet rules
  793. for various media in the same style sheet:
  794.  
  795.        @media print {
  796.          BODY { font-size: 10pt }
  797.        }
  798.        @media screen {
  799.          BODY { font-size: 12pt }
  800.        }
  801.  
  802.    Currently, the following media types are defined.
  803. Print
  804.      Output for paged opaque material, and for documents viewed on
  805.      screen in print preview mode.
  806.  
  807. Screen
  808.      A continuous presentation for computer screens.
  809.  
  810. Projector
  811.      Paged presentation for projected presentations.
  812.  
  813. Braille
  814.      For braille tactile feedback devices.
  815.  
  816. Speech
  817.      Aural presentation.
  818.  
  819. Light
  820.      The stylesheet will only be applied if the user is using a light
  821.      background.
  822.  
  823. Dark
  824.      The stylesheet will only be applied if the user is using a dark
  825.      background.
  826.  
  827. Emacs
  828.      The stylesheet will only be applied if the user is running in
  829.      Emacs 19.
  830.  
  831. XEmacs
  832.      The stylesheet will only be applied if the user is running in
  833.      XEmacs 19.
  834.  
  835. All
  836.      The default value, the style sheet applies to all output devices.
  837.  
  838. 
  839. File: w3.info,  Node: Speech Properties,  Prev: Media Selection,  Up: Properties
  840.  
  841. Speech Properties
  842. -----------------
  843.  
  844.    Those of us who are sighted are accustomed to visual presentation of
  845. HTML documents, frequently on a bitmapped display. This is not the only
  846. possible presentation method, however. Aural presentation, using a
  847. combination of speech synthesis and 'audio icons', provides an
  848. alternative presentation. This form of presentation is in current use by
  849. the blind and print-impaired communities.
  850.  
  851.    Often such aural presentation occurs by converting the document to
  852. plain text and feeding this to a 'screen reader' - software or hardware
  853. that simply reads all the characters on the screen. This results in less
  854. effective presentation than would be the case if the document structure
  855. were retained.
  856.  
  857.    There are other large markets for aural presentation, including
  858. in-car and home entertainment use; aurual or mixed aural/visual
  859. presentation is thus likely to increase in importance over the next few
  860. years. Realizing that that the aural rendering is essentially
  861. independent of the visual rendering:
  862.  
  863.    * Allows orthogonal aural and visual views.
  864.  
  865.    * Allows browsers to optionally implement both aural and visual
  866.      views to produce truly multimodal documents.
  867.  
  868. * Menu:
  869.  
  870. * volume::
  871. * pause-before::
  872. * pause-after::
  873. * pause::
  874. * cue-before::
  875. * cue-after::
  876. * cue::
  877. * play-during::
  878. * speed::
  879. * voice-family::
  880. * pitch::
  881. * pitch-range::
  882. * stress::
  883. * richness::
  884. * speak-punctuation::
  885. * speak-date::
  886. * speak-numeral::
  887. * speak-time::
  888.  
  889. 
  890. File: w3.info,  Node: volume,  Next: pause-before,  Prev: Speech Properties,  Up: Speech Properties
  891.  
  892. volume
  893. ......
  894.  
  895. Value:         <percentage> | mute | x-soft | soft | medium | loud |      
  896.                x-loud                                                     
  897. Initial:       medium                                                     
  898. Applies to:    all elements                                               
  899. Inherited:     yes                                                        
  900. Percentage     relative to user-specified mapping                         
  901. values:                                                                   
  902.  
  903.    The legal range of percentage values is 0% to 100%. There is a fixed
  904. mapping between keyword values and percentages:
  905.  
  906.    * 'x-soft' = '0%'
  907.  
  908.    * 'soft' = '25%'
  909.  
  910.    * 'medium' = '50%'
  911.  
  912.    * 'loud' = '75%'
  913.  
  914.    * 'x-loud' = '100%'
  915.  
  916.    Volume refers to the median volume of the waveform. In other words, a
  917. highly inflected voice at a volume of 50 might peak well above that.
  918. Note that '0%' does not mean the same as "mute". 0% represents the
  919. minimum audible volume level and 100% corresponds to the maximum
  920. comfortable level. The UA should allow the values corresponding to 0%
  921. and 100% to be set by the user. Suitable values depend on the equipment
  922. in use (speakers, headphones), the environment (in car, home theater,
  923. library) and personal preferences. Some examples:
  924.  
  925.    * A browser for in-car use has a setting for when there is lots of
  926.      background noise . 0% would map to a fairly high level and 100% to
  927.      a quite high level. The overall values are likely to be human
  928.      adjustable for comfort, for example with a physical volume
  929.      control: what this proposal does is adjust the dynamic range.
  930.  
  931.    * Another speech browser is being used in the home, late at night,
  932.      (don't annoy the neighbors) or in a shared study room. 0% is set
  933.      to very quiet and 100% to a fairly quiet level, too. As with the
  934.      first example, there is a low slope; the dynamic range is reduced.
  935.      The actual volumes are low here, wheras they were high in the
  936.      first example.
  937.  
  938.    * In a quiet and isolated house, an expensive hifi home theatre
  939.      setup. 0% is set fairly low and 100% to quite high; there is wide
  940.      dynamic range.
  941.  
  942.    The same authors stylesheet could be used in all cases, simply by
  943. mapping the 0 and 100 points suitably at the client side.
  944.  
  945. 
  946. File: w3.info,  Node: pause-before,  Next: pause-after,  Prev: volume,  Up: Speech Properties
  947.  
  948. pause-before
  949. ............
  950.  
  951. Value:         <time> | <percentage>                                      
  952. Initial:       UA specific                                                
  953. Applies to:    all elements                                               
  954. Inherited:     no                                                         
  955. Percentage     speed                                                      
  956. values:                                                                   
  957.  
  958.    This property specifies the pause before elements. It may be given
  959. in an absolute units (seconds, milliseconds) or as a relative value in
  960. which case it is relative to the reciprocal of the 'speed' property: if
  961. speed is 120 words per minute (ie a word takes half a second - 500
  962. milliseconds) then a pause-before of 100% means a pause of 500 ms and a
  963. pause-before of 20% means 100ms.
  964.  
  965.    Using relative units gives more robust stylesheets in the face of
  966. large changes in speed.
  967.  
  968. 
  969. File: w3.info,  Node: pause-after,  Next: pause,  Prev: pause-before,  Up: Speech Properties
  970.  
  971. pause-after
  972. ...........
  973.  
  974. Value:         <time> | <percentage>                                      
  975. Applies to:    all elements                                               
  976. Inherited:     no                                                         
  977. Percentage     speed                                                      
  978. values:                                                                   
  979.  
  980.    This property specifies the pause after elements. Values are
  981. specified the same way as 'pause-before'.
  982.  
  983. 
  984. File: w3.info,  Node: pause,  Next: cue-before,  Prev: pause-after,  Up: Speech Properties
  985.  
  986. pause
  987. .....
  988.  
  989. Value:         [<time> | <percentage> ]{1,2};                             
  990. Applies to:    all elements                                               
  991. Inherited:     no                                                         
  992. Percentage     speed                                                      
  993. values:                                                                   
  994.  
  995.    The 'pause' property is a shorthand for setting 'pause-before' and
  996. 'pause-after'. The first value is pause-before and the second is
  997. pause-after. If only one value is given, it applies to both properties.
  998.  
  999.    Examples:
  1000.  
  1001.        H1 { pause: 20ms }       /* pause-before: 20ms; pause-after: 20ms */
  1002.        H2 { pause: 30ms 40ms }  /* pause-before: 30ms; pause-after: 40ms */
  1003.        H3 { pause-after: 10ms } /* pause-before: ?;    pause-after: 10ms */
  1004.  
  1005. 
  1006. File: w3.info,  Node: cue-before,  Next: cue-after,  Prev: pause,  Up: Speech Properties
  1007.  
  1008. cue-before
  1009. ..........
  1010.  
  1011. Value:         <url> | none                                               
  1012. Initial:       none                                                       
  1013. Applies to:    all elements                                               
  1014. Inherited:     no                                                         
  1015.  
  1016.    Auditory icons are another way to distinguish semantic elements.
  1017. Sounds may be played before, and/or after the element to delimit it.
  1018. The same sound can be used both before and after, using the cue
  1019. property.
  1020.  
  1021.    Examples:
  1022.  
  1023.        A  { cue-before: url(bell.aiff); cue-after: url(dong.wav) }
  1024.        H1 { cue-before: url(pop.au); cue-after: url(pop.au) }
  1025.        H1 { cue: url(pop.au) }  /* same as previous */
  1026.  
  1027. 
  1028. File: w3.info,  Node: cue-after,  Next: cue,  Prev: cue-before,  Up: Speech Properties
  1029.  
  1030. cue-after
  1031. .........
  1032.  
  1033.    *Note cue-before::
  1034.  
  1035. 
  1036. File: w3.info,  Node: cue,  Next: play-during,  Prev: cue-after,  Up: Speech Properties
  1037.  
  1038. cue
  1039. ...
  1040.  
  1041.    *Note cue-before::
  1042.  
  1043. 
  1044. File: w3.info,  Node: play-during,  Next: speed,  Prev: cue,  Up: Speech Properties
  1045.  
  1046. cue-during
  1047. ..........
  1048.  
  1049. Value:         <url> | mix | none                                         
  1050. Initial:       mix                                                        
  1051. Applies to:    all elements                                               
  1052. Inherited:     no                                                         
  1053.  
  1054.    Similar to the cue-before and cue-after properties, this indicates
  1055. sound to be played during an element as a background (ie the sound is
  1056. mixed in with the speech).
  1057.  
  1058.    Examples:
  1059.  
  1060.        BLOCKQUOTE.sad { cue-during: url(violins.aiff) }
  1061.  
  1062. 
  1063. File: w3.info,  Node: speed,  Next: voice-family,  Prev: play-during,  Up: Speech Properties
  1064.  
  1065. speed
  1066. .....
  1067.  
  1068. Value:         <words-per-minute> | x-slow | slow | medium | fast |       
  1069.                x-fast | faster | slower                                   
  1070. Initial:       medium                                                     
  1071. Applies to:    all elements                                               
  1072. Inherited:     yes                                                        
  1073.  
  1074.    Specifies the speaking rate. Note that both absolute and relative
  1075. keyword values are allowed (compare with *Note font-weight::).
  1076.  
  1077. 
  1078. File: w3.info,  Node: voice-family,  Next: pitch,  Prev: speed,  Up: Speech Properties
  1079.  
  1080. voice-family
  1081. ............
  1082.  
  1083. Value:         [[<specific-voice> | <generic-voice>],]*                   
  1084.                [<specific-voice> | <generic-voice>]                       
  1085. Initial:       device-specific                                            
  1086. Applies to:    all elements                                               
  1087. Inherited:     yes                                                        
  1088.  
  1089.    The value is a prioritized list of voice family names. Generic
  1090. families are male, female, and child.
  1091.  
  1092.    Examples of specific voice families are: comedian, paul, lisa
  1093.  
  1094.    Examples
  1095.  
  1096.        H1 { voice-family: announcer, male }
  1097.        P.part.romeo { voice-family: romeo, male }
  1098.        P.part.juliet { voice-family: juliet, female }
  1099.  
  1100. 
  1101. File: w3.info,  Node: pitch,  Next: pitch-range,  Prev: voice-family,  Up: Speech Properties
  1102.  
  1103. pitch
  1104. .....
  1105.  
  1106.  
  1107. 
  1108. File: w3.info,  Node: pitch-range,  Next: stress,  Prev: pitch,  Up: Speech Properties
  1109.  
  1110. pitch-range
  1111. ...........
  1112.  
  1113.  
  1114. 
  1115. File: w3.info,  Node: stress,  Next: richness,  Prev: pitch-range,  Up: Speech Properties
  1116.  
  1117. stress
  1118. ......
  1119.  
  1120. Value:         <percentage>                                               
  1121. Initial:       medium                                                     
  1122. Applies to:    all elements                                               
  1123. Inherited:     yes                                                        
  1124.  
  1125.    Specifies the level of stress (assertiveness or emphasis) of the
  1126. speaking voice. English is a stressed language, and different parts of a
  1127. sentence are assigned primary, secondary or tertiary stress. The value
  1128. of property 'stress' controls the amount of inflection that results from
  1129. these stress markers.
  1130.  
  1131.    Increasing the value of this property results in the speech being
  1132. more strongly inflected. It is in a sense dual to property
  1133. 'pitch-range' and is provided to allow developers to exploit higher-end
  1134. auditory displays.
  1135.  
  1136. 
  1137. File: w3.info,  Node: richness,  Next: speak-punctuation,  Prev: stress,  Up: Speech Properties
  1138.  
  1139. richness
  1140. ........
  1141.  
  1142. Value:         <percentage>                                               
  1143. Initial:       medium (50%)                                               
  1144. Applies to:    all elements                                               
  1145. Inherited:     yes                                                        
  1146.  
  1147.    Specifies the richness (brightness) of the speaking voice. Different
  1148. speech devices may require the setting of one or more device-specific
  1149. parameters to achieve this effect.
  1150.  
  1151.    The effect of increasing richness is to produce a voice that carries
  1152. - reducing richness produces a soft, mellifluous voice.
  1153.  
  1154. 
  1155. File: w3.info,  Node: speak-punctuation,  Next: speak-date,  Prev: richness,  Up: Speech Properties
  1156.  
  1157. speak-punctuation
  1158. .................
  1159.  
  1160. Value:         code | none                                                
  1161. Initial:       none                                                       
  1162. Applies to:    all elements                                               
  1163. Inherited:     yes                                                        
  1164.  
  1165.    'code' indicates that punctuation such as semicolons, braces, and so
  1166. on are to be spoken literally. The default value of 'none' means that
  1167. punctuation is not spoken but instead is rendered naturally as various
  1168. pauses.
  1169.  
  1170. 
  1171. File: w3.info,  Node: speak-date,  Next: speak-numeral,  Prev: speak-punctuation,  Up: Speech Properties
  1172.  
  1173. speak-date
  1174. ..........
  1175.  
  1176. Value:         myd | dmy | ymd | none                                     
  1177. Initial:       none                                                       
  1178. Applies to:    all elements                                               
  1179. Inherited:     no                                                         
  1180.  
  1181.    This is a hint that the element contains a date and also how that
  1182. date should be spoken. month-day-year is common in the USA, while
  1183. day-month-year is common in Europe and year-month-day is also used.
  1184.  
  1185.    This should really be an HTML tag not a stylesheet property, since it
  1186. gives semantic information about the content.
  1187.  
  1188. 
  1189. File: w3.info,  Node: speak-numeral,  Next: speak-time,  Prev: speak-date,  Up: Speech Properties
  1190.  
  1191. speak-numeral
  1192. .............
  1193.  
  1194. Value:         digits | continous                                         
  1195. Initial:       none                                                       
  1196. Applies to:    all elements                                               
  1197. Inherited:     yes                                                        
  1198.  
  1199. 
  1200. File: w3.info,  Node: speak-time,  Prev: speak-numeral,  Up: Speech Properties
  1201.  
  1202. speak-time
  1203. ..........
  1204.  
  1205. Value:         24 | 12 | none                                             
  1206. Initial:       none                                                       
  1207. Applies to:    all elements                                               
  1208. Inherited:     yes                                                        
  1209.  
  1210. 
  1211. File: w3.info,  Node: Units,  Prev: Properties,  Up: Stylesheets
  1212.  
  1213. Units
  1214. =====
  1215.  
  1216. * Menu:
  1217.  
  1218. * Length Units::
  1219. * Percentage Units::
  1220. * Color Units::
  1221. * URLs::
  1222. * Angle Units::
  1223. * Time Units::
  1224.  
  1225. 
  1226. File: w3.info,  Node: Length Units,  Next: Percentage Units,  Prev: Units,  Up: Units
  1227.  
  1228. Length Units
  1229. ------------
  1230.  
  1231. 
  1232. File: w3.info,  Node: Percentage Units,  Next: Color Units,  Prev: Length Units,  Up: Units
  1233.  
  1234. Percentage Units
  1235. ----------------
  1236.  
  1237. 
  1238. File: w3.info,  Node: Color Units,  Next: URLs,  Prev: Percentage Units,  Up: Units
  1239.  
  1240. color Units
  1241. -----------
  1242.  
  1243. 
  1244. File: w3.info,  Node: URLs,  Next: Angle Units,  Prev: Color Units,  Up: Units
  1245.  
  1246. URLs
  1247. ----
  1248.  
  1249. 
  1250. File: w3.info,  Node: Angle Units,  Next: Time Units,  Prev: URLs,  Up: Units
  1251.  
  1252. Angle Units
  1253. -----------
  1254.  
  1255.    These are the legal angle units:
  1256.    * deg: degrees
  1257.  
  1258.    * grad
  1259.  
  1260.    * rad: radians
  1261.  
  1262. 
  1263. File: w3.info,  Node: Time Units,  Prev: Angle Units,  Up: Units
  1264.  
  1265. Time Units
  1266. ----------
  1267.  
  1268.    These are the legal time units:
  1269.  
  1270.    * ms: milliseconds
  1271.  
  1272.    * s: seconds
  1273.  
  1274. 
  1275. File: w3.info,  Node: Supported URLs,  Next: MIME Support,  Prev: Stylesheets,  Up: Top
  1276.  
  1277. Supported URLs
  1278. **************
  1279.  
  1280.    ::WORK:: List supported URL types, specific RFCs, etc.
  1281.  
  1282. * Menu:
  1283.  
  1284. * file::                        Local file access.
  1285. * ftp::                         Remote file access via ftp.
  1286. * nfs::                         Remote file access via NFS.
  1287. * info::                        Access to the Emacs Info system.
  1288. * http/https::                  HTTP/1.0 support.
  1289. * mailto::                      Sending simple electronic mail.
  1290. * news/nntp/snews::             Reading and sending Usenet news.
  1291. * rlogin/telnet/tn3270::        Legacy host connections.
  1292. * irc::                         Internet Relay Chat.
  1293. * data::                        Embedding the data within the URL itself.
  1294. * mailserver::                  Slightly more complicated electronic mail.
  1295. * gopher::                      Gopher and Gopher+.
  1296. * finger::                      The old favorite.
  1297.  
  1298. 
  1299. File: w3.info,  Node: file,  Next: ftp,  Prev: Supported URLs,  Up: Supported URLs
  1300.  
  1301. file
  1302. ====
  1303.  
  1304. 
  1305. File: w3.info,  Node: ftp,  Next: nfs,  Prev: file,  Up: Supported URLs
  1306.  
  1307. ftp
  1308. ===
  1309.  
  1310. 
  1311. File: w3.info,  Node: nfs,  Next: info,  Prev: ftp,  Up: Supported URLs
  1312.  
  1313. nfs
  1314. ===
  1315.  
  1316. 
  1317. File: w3.info,  Node: info,  Next: http/https,  Prev: nfs,  Up: Supported URLs
  1318.  
  1319. info
  1320. ====
  1321.  
  1322. 
  1323. File: w3.info,  Node: http/https,  Next: mailto,  Prev: info,  Up: Supported URLs
  1324.  
  1325. http/https
  1326. ==========
  1327.  
  1328. 
  1329. File: w3.info,  Node: mailto,  Next: news/nntp/snews,  Prev: http/https,  Up: Supported URLs
  1330.  
  1331. mailto
  1332. ======
  1333.  
  1334. 
  1335. File: w3.info,  Node: news/nntp/snews,  Next: rlogin/telnet/tn3270,  Prev: mailto,  Up: Supported URLs
  1336.  
  1337. news/nntp/snews
  1338. ===============
  1339.  
  1340. 
  1341. File: w3.info,  Node: rlogin/telnet/tn3270,  Next: irc,  Prev: news/nntp/snews,  Up: Supported URLs
  1342.  
  1343. rlogin/telnet/tn3270
  1344. ====================
  1345.  
  1346. 
  1347. File: w3.info,  Node: irc,  Next: data,  Prev: rlogin/telnet/tn3270,  Up: Supported URLs
  1348.  
  1349. irc
  1350. ===
  1351.  
  1352. 
  1353. File: w3.info,  Node: data,  Next: mailserver,  Prev: irc,  Up: Supported URLs
  1354.  
  1355. data
  1356. ====
  1357.  
  1358. 
  1359. File: w3.info,  Node: mailserver,  Next: gopher,  Prev: data,  Up: Supported URLs
  1360.  
  1361. mailserver
  1362. ==========
  1363.  
  1364. 
  1365. File: w3.info,  Node: gopher,  Next: finger,  Prev: mailserver,  Up: Supported URLs
  1366.  
  1367. gopher
  1368. ======
  1369.  
  1370. 
  1371. File: w3.info,  Node: finger,  Prev: gopher,  Up: Supported URLs
  1372.  
  1373. finger
  1374. ======
  1375.  
  1376.